home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: Mathan.ProW
- **
- ** Mathan ARexx Macro for ProWrite 3.3
- **
- ** (You must select the text to evaluate)
- **
- */
-
- OPTIONS RESULTS
-
- Extract /* Extract the selected text */
- text=RESULT
- ADDRESS 'Mathan'
- text /* Send string to Mathan */
- rlin=RESULT
- ADDRESS
- IF Open(file,'T:mth.txt',WRITE) THEN DO
- WriteLn(file,text)
- WriteLn(file,rlin)
- Close(file)
- InsertText 'T:mth.txt'
- END
-
-
-